Answer:

In the US, "GUI" is pronounced "gooey."

Fundamental GUI Classes

All Java GUI classes are based on the fundamental classes in the Application Windowing Toolkit, or AWT. These classes are also used as the base classes of an older set of components (which are usually regarded as part of the AWT). Swing components come with recent java Java releases. If you download the most recent release of Java, Swing will be part of it.

The older AWT components are similar to Swing components, but Swing components are more versatile. Also, Swing integrates smoothly with the Java Foundation Classes. The Java Foundation Classes provide many classes needed for modern software development. Sun Microsystems recommends that you use Swing for all new application code.

QUESTION 2:

Is a button a GUI component?